home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 2.iso / BARNET / FREENET / MELL / NETLIB00 / NetLib / c / makeaddr < prev    next >
Text File  |  1995-02-28  |  259b  |  15 lines

  1. #include "arpa/inet.h"
  2. #include "netinet/in.h"
  3.  
  4. /*
  5.  * Create an internet address from a network number and a local address
  6.  */
  7. struct in_addr inet_makeaddr(u_long net,u_long lna)
  8. {
  9.   struct in_addr address;
  10.  
  11.   address.s_addr = net | lna;
  12.  
  13.   return address;
  14. }
  15.